home *** CD-ROM | disk | FTP | other *** search
- program regenum;
-
- uses
- Forms,
- main in 'main.pas' {Form1},
- about in 'about.pas' {AboutBox},
- OkCancl2 in 'D:\APPS\DELPHI 2.0\OBJREPOS\OKCANCL2.pas' {OKRightDlg};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.Title := 'Registry enumerator';
- Application.HelpFile := 'regenum.hlp';
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
-